home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000031_news@columbia.edu_Mon Dec 4 13:50:40 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20608
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Wed, 6 Dec 1995 04:14:57 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id EAA19393 for kermit.misc@watsun; Wed, 6 Dec 1995 04:14:55 -0500
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!bcm.tmc.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Write-file produces continuous record
  8. Message-Id: <1995Dec4.195040.68738@cc.usu.edu>
  9. Date: 4 Dec 95 19:50:40 MDT
  10. References: <Pine.ULT.3.91.951204131848.1986A-100000@chinook.halcyon.com>
  11. Organization: Utah State University
  12. Lines: 19
  13. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14.  
  15. In article <Pine.ULT.3.91.951204131848.1986A-100000@chinook.halcyon.com>, 
  16. KeithM <kmhouse@halcyon.com> writes:
  17. > Hello all:
  18. > I'm using MS-DOS Kermit, version 3.14 on an IBM PC/AT 486/dx66 clone.
  19. > I've written a batch file that executes a kermit script that writes several
  20. > messages to a DOS file. These vary depending on what happens within the 
  21. > script. After the kermit script is finished and control is returned to 
  22. > the batch file, the DOS file is then written to screen.  The kermit verbs
  23. > I'm using are OPEN WRITE filename, WRITE FILE some message, WRITE FILE 
  24. > another message, CLOSE WRITE-FILE.  
  25. > When the file is displayed on the screen, all the lines are run together.  
  26. > Does anyone know how to write to a DOS file so that each WRITE FILE 
  27. > produces a separate line?
  28. > Thanks in advance for any and all help.
  29. --------
  30.     You add your own CR and LF's. That's \13 and \10, respectively.
  31.     Joe D.